home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / nt / zkf102.zip / bat.bat next >
DOS Batch File  |  1995-01-04  |  431b  |  9 lines

  1. @zkbat bat
  2. // This looks for all batch files, *.bat, and writes their names,
  3. // without the .bat extension, to standard output, in 8 columns,
  4. // each column 10 characters wide.  The output is sorted in each
  5. // column, continued in the next column.
  6. // The globmroots function finds all files that match the pattern
  7. // and returns a list of their root names (without extensions).
  8. write(cols(8,10,sort(globmroots("*.bat"))));
  9.